1
2
3
4
5
6
7 package ca.uhn.cache.internal.impl;
8
9 import junit.framework.TestCase;
10
11 import org.springframework.context.support.ClassPathXmlApplicationContext;
12
13 /***
14 * Instantiates a ParamSpaceConfig using <b>spring</b>.
15 *
16 * @author <a href="mailto:bryan.tripp@uhn.on.ca">Bryan Tripp</a>
17 * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:52:10 $ by $Author: bryan_tripp $
18 */
19 public class SpringParamSpaceConfigTest extends TestCase {
20
21
22 private ClassPathXmlApplicationContext myAppContext;
23
24 /***
25 * {@inheritDoc}
26 */
27 protected void setUp() throws Exception {
28 super.setUp();
29
30
31
32
33 }
34
35 /***
36 * @throws Exception ...
37 */
38 public void testGood1() throws Exception {
39
40 }
41
42 }